home *** CD-ROM | disk | FTP | other *** search
- /*
- File: TestAllocLinkedList.h
-
- Contains: Declaration for TTestAllocLinkedList class
-
- Copyright: © 1991-1993 by Apple Computer, Inc., all rights reserved.
-
- */
-
- #ifndef __TESTALLOCLINKEDLIST__
- #define __TESTALLOCLINKEDLIST__
-
- #ifndef __TESTLINKEDLIST__
- #include "TestLinkedList.h"
- #endif
-
- #define kTTestAllocLinkedListID kTestToolPrefix "TTestAllocLinkedList,1.1"
-
- class TTestAllocLinkedList : public TTestLinkedList
- {
- public:
- TTestAllocLinkedList();
- virtual ~TTestAllocLinkedList();
-
- virtual void InitTest(Boolean verbose, Boolean debug, int, char**);
- virtual void RunTestIteration(Boolean verbose, Boolean debug);
- virtual void EndTest(Boolean verbose, Boolean debug);
- };
-
- #endif
-